if not Exists(select * from sysobjects where name='TblEkhtetam')
begin
  CREATE TABLE [dbo].[TblEkhtetam](
	[SysDateEkhtetam] [smalldatetime] NULL,
	[StationNo] [smallint] NULL,
	[User_Id] [smallint] NULL,
	[NumberEkhtetam] [bigint] NULL,
	[MoojodPrice] [money] NULL,
	[SystemPrice] [money] NULL,
	[EkhtetamDate] [datetime] NULL,
	[User_Cash] [smallint] NULL
) ON [PRIMARY]
  



EXEC sp_bindefault N'[dbo].[SysDate]', N'[TblEkhtetam].[SysDateEkhtetam]'
end
  